home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d13 / pwr14e.arc / README.1ST < prev    next >
Text File  |  1990-12-27  |  5KB  |  89 lines

  1.                                    PowerBatch
  2.                          Computing Systems Design, Inc.
  3.                                 P.O. Box 566484
  4.                              Atlanta, GA 30356-6009
  5. There are 20  files on your installation  disk. The two files  SMLMODEL.MDL and
  6. POWERMAK.EXE will  be  placed in  a  directory on  your  DOS search  path.  The
  7. remainder  of  the  files  may be  placed  in  any  directory  you desire.  The
  8. POWERBAT.DOC file is the documentation and  may be viewed with any text  editor
  9. or printed to  your printer with the  DOS print command (ie  print POWERBAT.DOC
  10. <enter>). The files with  an extension of .PWR are PowerBatch  source files and
  11. the text  is printed  in the  documentation. You  should compile  these example
  12. files  and  run  the  resulting  programs  to help  familiarize  yourself  with
  13. PowerBatch.  The  file  DEMO1.PWR  uses  all  the  commands  with a  couple  of
  14. exceptions.
  15.  
  16. To install PowerBatch  run the install program  located on the source  disk. If
  17. the source in on a floppy drive enter A:PBINSTAL (or B:PBINSTAL). If the source
  18. is on  a hard drive, change directory to  the directory containing PBINSTAL and
  19. enter
  20.  
  21.    PBINSTALL <enter>
  22.  
  23.                             [More on the next page]
  24.  
  25. If you have purchased a registered copy of PowerBatch, the install program will
  26. recognize this  by the presence  of REGISTER.EXE  on your  diskette. When  this
  27. program is  present, the  copy of PowerBatch  you have  just installed  will be
  28. registered in your name.
  29.  
  30. Your  name  and  serial  number  will  be  imbedded  in  the  software  by  the
  31. registration program. If you give  anyone an evaluation copy of PowerBatch,  DO
  32. NOT PROVIDE THE REGISTRATION PROGRAM WITH THE EVALUATION COPY. Simply  copy all
  33. of  the files but REGISTER.EXE. Better still, compile the two PowerBatch source
  34. files  PBCLONE.PWR  and  MOVESUB.PWR  and  use  these  to  create  a  clone  of
  35. PowerBatch. PBCLONE uses  MOVESUB as a subroutine and is an  example of the use
  36. of  subroutines  in  PowerBatch.  Anyone  who  uses  the  registration  program
  37. REGISTER.EXE will imbed your name and serial number within their software.
  38.  
  39.                                  Change Record
  40. V1.0-1.3 were alpha and beta test versions not available to the public.
  41. V1.4    Added BreakOn, BreakOff, and ?EnvStr commands.
  42.  
  43.         Fixed bug in keyboard input routine which was incorrectly handling a
  44.         single keystroke.
  45.  
  46.         Changed execution of DOS commands to prevent loading of another copy of
  47.         command processor.
  48.  
  49.         Changed beep command to default to 1 repetition.
  50.  
  51. V1.4a   Added SetPath, Prompt, and SetEnv commands to allow changing of
  52.         environment variables in the master and current environment.
  53.  
  54. V1.4b   Rewrote the routine which gets another output file name if the default
  55.         name is not acceptable.
  56.  
  57. V1.4c   Fixed bug in SetVar command which was damaging the path environment
  58.         variable in the current environment area.
  59.  
  60.         Added error messages to commands which set environment variables in
  61.         both current and master environment areas if the environment area was
  62.         not found or the change or addition exceeded the amount of free space
  63.         available in the environment area.
  64.  
  65.         Fixed bug which was truncating the POWERBAT.ERR file if fatal compile
  66.         errors existed.
  67.  
  68.         Enabled stdout redirection from within PowerBatch. ie Pgmname > nul
  69.  
  70. V1.4d   Added special character indicator to READKEY command.
  71.  
  72.         Added ADD and SUBTRACT commands. Provides a means to loop N times.
  73.  
  74. V1.4e   Added ability to escape from routine which prompts user for valid input
  75.         source file name if none is given or an error is detected.
  76.  
  77.         Characters which are not on the keyboard may be defined using the
  78.         decimal value of the character ie "Variable Enter,2,#17#217"
  79.  
  80.         Added the ability to define color changes within a stream of text. The
  81.         trigger character is Ctrl-A and this is followed by the THREE digit
  82.         color attribute. Ctrl-A may usually be generated in your editor by
  83.         pressing Alt-1 (the 1 on the keypad). These colors may be imbedded in
  84.         variables or literals. (@=Ctrl-A for the example).
  85.         Variable CmdLine,75,"@112F@007ile @112T@oo7ext..."
  86.         WriteAt  5,3,"@112F@007ile @112T@007ext..."
  87.  
  88.         Fixed bug in stdout redirection. Previously only > nul was correct.
  89.